home *** CD-ROM | disk | FTP | other *** search
- // LayeredWnd.h: LayeredWnd クラスのインターフェイス
- //
- //////////////////////////////////////////////////////////////////////
-
- #if !defined(AFX_LAYEREDWND_H__F9EB8D6D_67C1_11D4_9897_00C00CB069F5__INCLUDED_)
- #define AFX_LAYEREDWND_H__F9EB8D6D_67C1_11D4_9897_00C00CB069F5__INCLUDED_
-
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
-
- BOOL InitInstance( HINSTANCE hInstance );
- void ExitInstance();
- LONG APIENTRY MainWndProc( HWND hWnd, UINT message, UINT wParam, LONG lParam );
-
- class LayeredWnd
- {
- public:
- LayeredWnd( HINSTANCE hInstance );
- virtual ~LayeredWnd();
- HWND Create();
- LRESULT WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
-
- HINSTANCE m_hInstance;
- HWND m_hWnd;
-
- // メッセージ関数群
- void OnCreate( HWND hWnd );
- void OnDestroy();
- };
-
- #endif // !defined(AFX_LAYEREDWND_H__F9EB8D6D_67C1_11D4_9897_00C00CB069F5__INCLUDED_)
-